type compress/flate.byLiteral

7 uses

	compress/flate (current package)
		huffman_code.go#L22: 	lns       byLiteral // stored to avoid repeated allocation in generate
		huffman_code.go#L310: type byLiteral []literalNode
		huffman_code.go#L312: func (s *byLiteral) sort(a []literalNode) {
		huffman_code.go#L313: 	*s = byLiteral(a)
		huffman_code.go#L317: func (s byLiteral) Len() int { return len(s) }
		huffman_code.go#L319: func (s byLiteral) Less(i, j int) bool {
		huffman_code.go#L323: func (s byLiteral) Swap(i, j int) { s[i], s[j] = s[j], s[i] }